home *** CD-ROM | disk | FTP | other *** search
Wrap
XSetup plugin | 2000-12-14 | 1.3 KB | 52 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0" "TYPE"="6" "COUNT"="1" "UIPATH"="Hardware\Video Cards\Elsa\Gladiac" "NAME"="Gladic Options" "LANGUAGE"="VBScript" "VERSION"="1.04" "TEXT 1"="Keep Monitor ON while using TV Out" "DESCRIPTION 1"="If the first option is activated, the Gladiac driver will *NOT* turn off the monitor (this is the default) during display through the optional TV Out connector." "AUTHOR"="Xteq Systems" "CONTACTURL"="http://www.xteq.com" "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved" "COMMENT 1"=" " "COMMENT 2"="" sPC="HKLM\SOFTWARE\Else\VideoIO\" sV1="HKLM\SOFTWARE\Else\VideoIO\VideoOut\Gladiac_EnableMonitor" 'Called when the Plugin is started SUB Plugin_Initialize if RegPathExists(sPC) then i=RegReadValue(sV1) if i=1 then SetUIElement 1,true else Disable end if END SUB 'Called when the Plugin should validate the Data the user has entered SUB Plugin_CheckData(ElementIndex) END SUB 'Called when the Plugin should apply the changes SUB Plugin_Apply(ElementIndex,ElementSubIndex) if GetUIElement(1)=true then Call RegWriteValue(sV1,1,2) else Call RegWriteValue(sV1,0,2) end if END SUB 'Called when the Plugin is about to be removed from memory SUB Plugin_Terminate END SUB